home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IRP Stack Size.xpl < prev    next >
Text File  |  2003-04-25  |  2KB  |  51 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Network\Server\Common"
  5. "NAME"="IRP Stack Size"
  6. "OSVERSION"="0101011"
  7. "WARNING"="1"
  8. "VERSION"="1.12"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="IRP Stack Size"
  11. "DESCRIPTION 1"="If a Windows server returns a message that there is not enough server storage available, the IRP Stack Size should be increased."
  12. "DESCRIPTION 2"="Enter the desired Stack Size; valid values range from 1 to 12."
  13. "DESCRIPTION 3"="Note: Windows NT [SP4 and prior] uses 4 as a default; Windows NT4 [SP5] and Windows 2000 use a *minimum* of 7."
  14. "DESCRIPTION 4"="To restore the default value, clear the field."
  15. "AUTHOR"="Ojatex@aol.com"
  16. "CONTACTURL"="http://members.aol.com/ojatex/"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"="For X-Setup program information, go to http://www.xteq.com"
  19. "COMMENT 2"="Thanks to CptSiskoX for suggested plugin."
  20. "COMMENT 3"="For more information, see 'Changes in IRP Stack Size in Lanman Server' at http://support.microsoft.com/support/kb/articles/Q198/3/86.ASP."
  21. "COMMENT 4"="Thanks M. Rau [mailto:m_rau@gmx.net] for the bug report!"
  22.  
  23. sP="HKLM\System\CurrentControlSet\Services\LanmanServer\Parameters\IRPStackSize"
  24.  
  25. Sub Plugin_Initialize 
  26.  if GetWinVer=2 or GetWinVer=4 or GetWinVer=6 then
  27.     i=RegReadValue(sP)
  28.     SetUIElement 1,i
  29.  else
  30.     Disable
  31.  end if
  32. End Sub
  33.  
  34. Sub Plugin_CheckData(ElementIndex)
  35. End Sub
  36.  
  37. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  38.  i=GetUIElement(1)
  39.  
  40.  if len(i)=0 then
  41.     If RegValueExists(sP) then RegDeleteValue(sP)
  42.  else
  43.     Call RegWriteValue(sP,i,2)
  44.  end if
  45.  
  46.  Call Restart()
  47. End Sub
  48.  
  49. Sub Plugin_Terminate 
  50. End Sub
  51.